home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_004 / kermit / kermit.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  710b  |  31 lines

  1. /*    @(#)kermit.h    1.1    1/26/85    */
  2.  
  3. /*
  4.  *    Stuff which gets included in every kermit compilation.
  5.  */
  6.  
  7. #include <stdio.h>
  8. #include "manifest.h"
  9. #include "globals.h"
  10.  
  11. #ifdef DBUG
  12. #    include <local/dbug.h>
  13. #else
  14. #    define DBUG_ENTER(a1)
  15. #    define DBUG_RETURN(a1) return(a1)
  16. #    define DBUG_VOID_RETURN return
  17. #    define DBUG_EXECUTE(keyword,a1)
  18. #    define DBUG_2(keyword,format)
  19. #    define DBUG_3(keyword,format,a1)
  20. #    define DBUG_4(keyword,format,a1,a2)
  21. #    define DBUG_5(keyword,format,a1,a2,a3)
  22. #    define DBUG_PUSH(a1)
  23. #    define DBUG_POP()
  24. #    define DBUG_PROCESS(a1)
  25. #    define DBUG_FILE (stderr)
  26. # endif
  27.  
  28. #define tochar(ch) (ch + ' ')
  29. #define unchar(ch) (ch - ' ')
  30. #define ctl(ch) (ch ^ 0100)
  31.